home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu219.dms / pu219.adf / SOURCES / hndstub.asm < prev    next >
Assembly Source File  |  1992-07-16  |  274b  |  10 lines

  1.         xdef    _hndstub    ;this is hndstub()
  2.         xref    _hndcode    ;will call hndcode(InputEvent,Data)
  3.  
  4. _hndstub    movem.l    a0/a1,-(a7)    ;stack InputEvent & Data ptrs
  5.         jsr    _hndcode    ;jump to actual input handler
  6.         addq.l    #8,a7        ;de-stack pointers
  7.         rts            ;return (return value is in D0)
  8.  
  9.         end
  10.